home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-11-11 | 384 b | 25 lines |
- #! smake
-
- include $(ROOT)/usr/include/make/commondefs
-
- TARGETS = glutduck
-
- GLDEBUG ?= no
- #if $(GLDEBUG) != "no"
- OPTIMIZER = -g
- #endif
-
- TOOLKITDIR ?= ../
-
- LIBGLUT = $(TOOLKITDIR)/lib/libglut.a
- LLDLIBS = $(LIBGLUT) -lInventor -lGLU -lGL -lXmu -lXext -lX11 -lm
-
- C++FILES = glutduck.c++
-
- LC++INCS = -I$(TOOLKITDIR)/include
- LC++OPTS = -fullwarn
-
- default: $(TARGET)
-
- include $(COMMONRULES)
-